home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / scrn11 / scrnlib.h < prev    next >
Text File  |  1987-06-30  |  914b  |  43 lines

  1. /* HEADER FILE FOR SCRNLIB */
  2. /* COPYRIGHT 1987 BY DAVE MILLIS */
  3.  
  4. /* The routine prototypes */
  5.  
  6. void beep(void);
  7. void cls(void);
  8. void cursoff(void);
  9. void curson(void);
  10. char getkey(void);
  11. void getpos(void);
  12. void gotoxy(int,int);
  13. int inpstr(char *);
  14. char keywait(void);
  15. void movxy(int,int);
  16. void printmch(char *,int);
  17. void printmcV(char *,int);
  18. void printsh(char *);
  19. void printsv(char *);
  20. void putsch(char *);
  21. void scrldn(int);
  22. void scrlup(int);
  23. void scrnoff(void);
  24. void scrnon(void);
  25. void scrnrst(char *,int,int);
  26. void scrnrstd(char *,int,int);
  27. void scrnsav(char *,int,int,int,int);
  28. void scrnsavd(char *,int,int,int,int);
  29. void setattr(int,int);
  30. void setcurs(int,int);
  31. void window(int,int,int,int,int);
  32.  
  33. /* THE GLOBAL VARIABLES USED BY SCRNLIB */
  34.  
  35. char txtattr = 07;
  36. char scxlow=0;
  37. char scxhigh=79;
  38. char scylow=0;
  39. char scyhigh=24;
  40. int oldcurs=0;
  41. int xposn=0;
  42. int yposn=0;
  43.